home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C++ / Applications / Lookup 1.0d2 / Resources / Lookup.r < prev    next >
Encoding:
Text File  |  1995-10-08  |  1.6 KB  |  118 lines  |  [TEXT/CWIE]

  1. //
  2. //    Lookup.r
  3. //
  4.  
  5. // Standard includes:
  6. #include "Types.r"
  7. #include "SysTypes.r"
  8.  
  9. #include "PowerPlant.r"
  10.  
  11. #include "ResourceIDs.h"
  12. #include "Lookup.h"
  13.  
  14. resource 'STR#' (STRx_Standards, "Standards", purgeable) {
  15.     {
  16.         "Lookup",
  17.         "Save File As:",
  18.         "Can’t Undo"
  19.     }
  20. };
  21.  
  22. resource 'STR#' (STRx_Untitled, "untitled", purgeable) {
  23.     {
  24.         "untitled",
  25.         "untitled "
  26.     }
  27. };
  28.  
  29. resource 'STR#' (STRx_RedoEdit, "redo edit", purgeable) {
  30.     {
  31.         "Can’t Redo",
  32.         "Redo",
  33.         "Redo Cut",
  34.         "Redo Copy",
  35.         "Redo Paste",
  36.         "Redo Clear",
  37.         "Redo Typing",
  38.         "Redo Add",
  39.         "Redo Change",
  40.         "Redo Clear"
  41.     }
  42. };
  43.  
  44. resource 'STR#' (STRx_UndoEdit, "undo edit", purgeable) {
  45.     {
  46.         "Can’t Undo",
  47.         "Undo",
  48.         "Undo Cut",
  49.         "Undo Copy",
  50.         "Undo Paste",
  51.         "Undo Clear",
  52.         "Undo Typing",
  53.         "Undo Add",
  54.         "Undo Change",
  55.         "Undo Clear"
  56.     }
  57. };
  58.  
  59. resource 'STR#' (STRx_RedoDrag, "redo drag", purgeable) {
  60.     {
  61.         "Redo Drag Copy",
  62.         "Redo Drag Move",
  63.         "Redo Drag Drop"
  64.     }
  65. };
  66.  
  67. resource 'STR#' (STRx_UndoDrag, "undo drag", purgeable) {
  68.     {
  69.         "Undo Drag Copy",
  70.         "Undo Drag Move",
  71.         "Undo Drag Drop"
  72.     }
  73. };
  74.  
  75. resource 'BNDL' (128, purgeable) {
  76.     kApplicationSignature,
  77.     0,
  78.     {
  79.         'ICN#',
  80.         {
  81.             0, 128,
  82.             1, 129
  83.         },
  84.         'FREF',
  85.         {
  86.             0, 128,
  87.             1, 129
  88.         }
  89.     }
  90. };
  91.  
  92. resource 'FREF' (128, purgeable) {
  93.     'APPL',
  94.     0,
  95.     ""
  96. };
  97.  
  98. resource 'FREF' (129, purgeable) {
  99.     'TEXT',
  100.     0,
  101.     ""
  102. };
  103.  
  104. type kApplicationSignature as 'STR ';
  105. resource kApplicationSignature (0) {
  106.     "Copyright © 1995 Alastair Rankine All Rights Reserved And All That Guff."
  107. };
  108.  
  109. resource 'vers' (1, purgeable) {
  110.     0x1,
  111.     0x0,
  112.     development,
  113.     0x1,
  114.     verAustralia,
  115.     "1.0d1",
  116.     "1.0d1 © 1995 Alastair Rankine"
  117. };
  118.